/* =========================================================
   QUIENES-SOMOS.CSS - SISTEMAS DE NICARAGUA
   ========================================================= */

/* =========================================
   01. FONDO GLOBAL
   ========================================= */
   body {
    background:
      linear-gradient(rgba(241, 245, 249, 0.70), rgba(241, 245, 249, 0.70)),
      url('../img/fondos/ejemplo.jpeg') no-repeat center center fixed !important;
    background-size: cover !important;
    color: var(--text);
    min-height: 100vh;
  }
  
  /* =========================================
     02. TARJETAS PRINCIPALES
     ========================================= */
  .card {
    background: rgba(255, 255, 255, 0.65) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    color: var(--navy);
  }
  
  /* =========================================
     03. BADGES / ETIQUETAS
     ========================================= */
  .badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
  }
  
  .badge {
    background: white;
    border: 1px solid var(--border);
    padding: 10px 12px;
    border-radius: 999px;
    font-size: 0.9rem;
    color: var(--navy);
    font-weight: 800;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  }
  
  /* =========================================
     04. LAYOUT MISIÓN / VISIÓN
     ========================================= */
  .split-custom {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 30px;
    align-items: stretch;
  }
  
  .main-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .mv-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  /* Tarjetas Misión / Visión */
  .mv-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    height: 100%;
    background: white !important;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, border-color 0.3s ease;
  }
  
  .mv-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  }
  
  .icon-box {
    width: 55px;
    height: 55px;
    background: var(--navy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: transform 0.5s ease;
  }
  
  .icon-box.highlight {
    background: var(--accent);
  }
  
  .mv-card:hover .icon-box {
    transform: rotate(360deg);
  }
  
  .h3-mv {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    color: var(--navy);
    font-weight: 800;
    text-transform: uppercase;
  }
  
  .p-mv {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #475569;
  }
  
  /* =========================================
     05. SECCIÓN VALORES / PILARES
     ========================================= */
  .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .value-card {
    text-align: center;
    padding: 35px 25px;
    background: white;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--navy);
  }
  
  .value-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
    display: inline-block;
    background: rgba(232, 93, 4, 0.1);
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
  }
  
  .value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--navy);
  }
  
  .value-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
  }
  
  /* =========================================
     06. RESPONSIVE
     ========================================= */
  @media (max-width: 900px) {
    .split-custom {
      grid-template-columns: 1fr;
    }
  
    .mv-card {
      align-items: flex-start;
    }
  
    .values-grid {
      grid-template-columns: 1fr;
    }
  }
  